[USER (data scientist)]: Sweet! Last thing, can you help me turn the result into a list of tuples? Please generate a list of tuples representing rows from a filtered DataFrame.
My template of code snippet is:

---BEGIN CODE TEMPLATE---

import pandas as pd 
import pickle

# Load the dataset 
credit_customers = pd.read_csv("credit_customers.csv") 
 
# YOUR SOLUTION BEGIN:
<code1>
[COMPLETE YOUR CODE] 
</code1>
# YOUR SOLUTION END

print(f"high_credit_long_duration: {result_list}") 

# save data
pickle.dump(result_list, open("./pred_result/result_list.pkl","wb"))

---END CODE TEMPLATE---

[YOU (AI assistant)]: Of course! Here's the code to convert the result into a list of tuples:
'''
import pandas as pd 
import pickle

# Load the dataset 
credit_customers = pd.read_csv("credit_customers.csv") 
 
# YOUR SOLUTION BEGIN:
